home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / CHARSTR.HDR < prev    next >
Text File  |  1994-04-25  |  889b  |  38 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _Chars( nLowBound, nHighBound ) --> cString
  8.  
  9. PARAMETERS:
  10.  
  11. nLowBound  : Lowest character of string to create
  12. nHighBound : Highest character of string to create
  13.  
  14. SHORT:
  15.  
  16. Create a string of characters between a low and high range.
  17.  
  18. DESCRIPTION:
  19.  
  20. _CharString() accepts two numeric parameters, representing ASCII code
  21. ranges, and builds and returns a string of characters bounded by nLowBound
  22. and nHighBound.
  23.  
  24. This is another of those functions that I needed at the time but forgot why
  25. now.
  26.  
  27. NOTE:
  28.  
  29.  
  30.  
  31. EXAMPLE:
  32.  
  33. t = _charstr(65,75)
  34.  
  35. Result: t = 'ABCDEFGHIJK'
  36.  
  37. ******************************************************************************/
  38.